Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633443 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game

right-arrow.png cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/right-arrow.png
77 Views
0 Comments
Media file
pause.jpg cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/pause.jpg
80 Views
0 Comments
Media file
red-left-arrow.png cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/red-left-arrow.png
125 Views
0 Comments
Media file
rotate.png cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/rotate.png
111 Views
0 Comments
Media file
index.js cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/index.js
180 Views
0 Comments
const grid=document.querySelector(".grid")
let squares=Array.from(document.querySelectorAll('.grid div'));
const score=document.getElementById("score");
const startbtn=document.getElementById('start-btn')
const btnimg=document.getElementById('btnimg');
let count=0;
const width=10;

play.jpg cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/play.jpg
78 Views
0 Comments
Media file
down.png cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/down.png
122 Views
0 Comments
Media file
pause.png cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/pause.png
116 Views
0 Comments
Media file
left-arrow.png cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/left-arrow.png
92 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/style.css
122 Views
0 Comments
body{
background-color:black ;
color:white;
}
.top{
display: flex;
justify-content: space-between;
width:200px;
index.html cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/index.html
304 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
red-right-arrow.png cody/swapnilsparsh/30DaysOfJavaScript/84 - Tetris Game/red-right-arrow.png
112 Views
0 Comments
Media file